2. Change the MEM_PER_DOM amount in 11_create_concurrent to 24MB, so
that the test will run on x86_64.
3. Increase the number of DomUs created in 12_create_concurrent to 5
4. Fix a logic error in 01_unpause
5. Add a test 06_help that checks all xm commands with 0-10 arguments
to make sure none of them traceback with varying argument counts.
Signed-off-by: Dan Smith <danms@us.ibm.com>
DISABLED =
-XFAIL_TESTS = 07_block_attach_baddevice_neg.test \
- 08_block_attach_bad_filedevice_neg.test
-
-
EXTRA_DIST = $(TESTS) $(XFAIL_TESTS)
TESTS_ENVIRONMENT=@TENV@
MIN_DOMS = 10
MAX_DOMS = 50
-MEM_PER_DOM = 16
+MEM_PER_DOM = 24
domains = []
console = []
import time
-DOMS=2
+DOMS=5
MEM=32
DUR=60
02_help_basic_neg.test \
03_help_badparm_neg.test \
04_help_long_pos.test \
- 05_help_nonroot_pos.test
+ 05_help_nonroot_pos.test \
+ 06_help_allcmds.test
XFAIL_TESTS =
# Copyright (C) International Business Machines Corp., 2005
# Copyright (C) XenSource Ltd, 2005
-# Author: Woody Marvel <marvel@us.ibm.com>
# Author: Ewan Mellor <ewan@xensource.com>
from XmTestLib import *
TESTS = 01_memset_basic_pos.test \
02_memset_badparm_neg.test \
- 04_memset_smallmem_pos.test \
- 03_memset_random_pos.test
+ 03_memset_random_pos.test \
+ 04_memset_smallmem_pos.test
XFAIL_TESTS =
FAIL(str(e))
try:
run = console.runCmd("ls")
- #If we get here, console attached to paused domain (unexpected)
- FAIL("console attached to supposedly paused domain")
except ConsoleError, e:
pass
# Close the console
console.closeConsole()
+if run["return"] != 0:
+ FAIL("console failed to attach to supposedly unpaused domain")
+
# Stop the domain (nice shutdown)
domain.stop()